home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource for Source: C/C++
/
Resource for Source - C-C++.iso
/
codelib8
/
v_10_07
/
1007018a
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-11-01
|
258 b
|
15 lines
Listing 5 -- wctomb.c
/* wctomb function */
#include <stdlib.h>
/* static data */
char _Wcxtomb = {0};
int (wctomb)(char *s, wchar_t wchar)
{ /* translate wide character to multibyte string */
return (_Wctomb(s, wchar, &_Wcxtomb));
}